home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / binutils / i686-pc-linux-gnu / 2.16.1 / ldscripts / i386linux.xu < prev   
Text File  |  2006-01-09  |  688b  |  39 lines

  1. /* Script for ld -Ur: link w/out relocation, do create constructors */
  2. OUTPUT_FORMAT("a.out-i386-linux", "a.out-i386-linux",
  3.           "a.out-i386-linux")
  4. OUTPUT_ARCH(i386)
  5. SECTIONS
  6. {
  7.   .text :
  8.   {
  9.     CREATE_OBJECT_SYMBOLS
  10.     *(.text)
  11.     /* The next six sections are for SunOS dynamic linking.  The order
  12.        is important.  */
  13.     *(.dynrel)
  14.     *(.hash)
  15.     *(.dynsym)
  16.     *(.dynstr)
  17.     *(.rules)
  18.     *(.need)
  19.   }
  20.   .data :
  21.   {
  22.     /* The first three sections are for SunOS dynamic linking.  */
  23.     *(.dynamic)
  24.     *(.got)
  25.     *(.plt)
  26.     *(.data)
  27.     *(.linux-dynamic) /* For Linux dynamic linking.  */
  28.     CONSTRUCTORS
  29.   }
  30.   .bss :
  31.   {
  32.    ;
  33.    *(.bss)
  34.    *(COMMON)
  35.    ;
  36.    ;
  37.   }
  38. }
  39.